home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Online / gegAIM / gegAIM.readme < prev   
Text File  |  2000-05-29  |  2KB  |  104 lines

  1.  
  2. This is an AOL Instant Messenger for Amiga.
  3.  
  4. Features:
  5. --------
  6.  
  7.     - Commodity
  8.     - AppIcon
  9.     - Say support
  10.     - ARexx
  11.     - GadTools GUI
  12.     - Font sensitive
  13.     - Resizeable
  14.     - Localized
  15.     - Options stored in ToolTypes
  16.  
  17.  
  18. Start it from wb, please!
  19.  
  20. You can edit the options from the program or via tooltypes.
  21.  
  22. Options:
  23. -------
  24.  
  25.     CX_POPUP=YES|NO                | open when start?
  26.     CX_POPKEY=ctrl alt g        | pop-up key
  27.     CX_PRIORITY=0                | program priority
  28.     POPUP_ON_IN_IM=YES|NO        | pop-up window on incoming IMs
  29.     SOUND=YES|NO                | sampled sound enabled?
  30.     SAY_OPEN=YES|NO                | say when window is opened?
  31.     SAY_CLOSE=YES|NO            | say when window is closed?
  32.     SAY_OUT_IM=NO|YES            | say outgoing IMs?
  33.     SAY_SYS=NO|YES                | say system messages?
  34.     SAY_IN_IM=YES|NO            | say incoming IMs?
  35.  
  36. You have to use an editor for edit the user and buddy data:
  37.  
  38.     gegaIM.user:
  39.     -----------
  40.         your screenname            | register on www.aol.com/aim
  41.         your e-mail address        | 
  42.         your password            | encoded on 1st start
  43.  
  44.     gegaIM.buddylist:
  45.     ----------------
  46.         Buddy1 ScreenName        | buddy's screenname
  47.         Buddy1 e-mail address    | buddy's e-mail address
  48.         Buddy1 language            | buddy's language
  49.         -----------------        | separator line between buddies
  50.         Buddy2 ScreenName        |
  51.         Buddy2 e-mail address    |
  52.         Buddy2 language            |
  53.         ...
  54.  
  55.  
  56. Supported ARexx commands:
  57. ------------------------
  58.  
  59.     ADDBUDDY NAME/K [EMAIL/K] [LANG/K]
  60.     MODBUDDY NAME/K EMAIL/K | LANG/K
  61.     REMBUDDY NAME/K
  62.     ADDLINE LINE/K [BUDDY/K] [ACTIVE/S]
  63.     CLEAR
  64.     HIDE
  65.     SHOW
  66.     PLAYSOUND [TYPE/N]
  67.         0 - inmsg
  68.         1 - outmsg
  69.         2 - error
  70.         3 - buddy in
  71.         4 - buddy out
  72.         5 - online
  73.         6 - offline
  74.     QUIT
  75.     SENDIM BUDDY/K IM/K
  76.     SIGNON [NAME/K PASSWORD/K] [CONFIG/S]
  77.     SIGNOFF
  78.     SAVELOG [FILE/K]
  79.  
  80.  
  81. Example:
  82. -------
  83.  
  84. ---CUT HERE---
  85. /* test */
  86.  
  87. ADDRESS GEGAIM
  88.  
  89. HIDE
  90.  
  91. SENDIM BUDDY '"Nagy Etelka"' IM '"This is the message. Quota the message!"'
  92.  
  93. PLAYSOUND TYPE 3
  94.  
  95. ADDLINE ACTIVE LINE '"Instant Message sent via ARexx"'
  96.  
  97. SHOW
  98.  
  99. SIGNOFF
  100.  
  101. ---CUT HERE---
  102.  
  103.  
  104.